home *** CD-ROM | disk | FTP | other *** search
/ Dynamic Graphics Magazine (Alt) / Dynamic Graphics Magazine (Version B).iso / pc / dgm / postgame.dir / 00075.ls < prev    next >
Encoding:
Text File  |  1997-03-25  |  536 b   |  19 lines

  1. on exitFrame
  2.   if field "attempts" = "9.0" then
  3.     put "PERFECT" into field "eval"
  4.   else
  5.     if (field "attempts" >= "10.0") and (field "attempts" <= "12.0") then
  6.       put "AVERAGE" into field "eval"
  7.     else
  8.       if (field "attempts" >= "13.0") and (field "attempts" <= "17.0") then
  9.         put "BELOW AVERAGE" into field "eval"
  10.       else
  11.         if field "attempts" >= "18.0" then
  12.           put "PERHAPS YOU SHOULD TAKE THE TEST AGAIN" into field "eval"
  13.         end if
  14.       end if
  15.     end if
  16.   end if
  17.   puppetSound("thing")
  18. end
  19.